From 9b3a25b2acca835286ce56ec965212cc491fea36 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Thu, 26 May 2011 12:34:14 +0200 Subject: [PATCH] add comment about case falling through this makes code checker tools happy and the code easier to understand --- babl/babl-extension.c | 1 + 1 file changed, 1 insertion(+) diff --git a/babl/babl-extension.c b/babl/babl-extension.c index 1973588..9c05e53 100644 --- a/babl/babl-extension.c +++ b/babl/babl-extension.c @@ -326,6 +326,7 @@ babl_extension_load_dir_list (const char *dir_list) { case '\0': eos = 1; + /* don't break here, the path needs to be processed */ case BABL_PATH_SEPARATOR: { -- 2.30.2